home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-wos-src / machines / amigawos / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  153b  |  13 lines

  1. /* setjmp.h - PowerPC */
  2.  
  3. #ifndef __SETJMP_H
  4. #define __SETJMP_H 1
  5.  
  6. typedef int jmp_buf[24];
  7.  
  8. int setjmp (jmp_buf);
  9. void longjmp (jmp_buf, int);
  10.  
  11. #endif
  12.  
  13.